home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / opengl / utilities / isfast / demo / Makefile < prev   
Encoding:
Makefile  |  1994-08-02  |  390 b   |  19 lines

  1. TARGET = demo
  2.  
  3. CFLAGS = -O -I../libisfast -I../libpdb -I../libtk
  4.  
  5. LIBS = -lGLU -lGL -lX11
  6.  
  7. OBJECTS = demo.o ../libisfast/libisfast.a ../libtk/libtk.a ../libpdb/libpdb.a
  8.  
  9. $(TARGET): $(OBJECTS)
  10.     $(CC) -o $(TARGET) $(OBJECTS) $(LIBS) $(VLDOPTS)
  11.  
  12. demo.o: ../libisfast/isfast.h ../libpdb/pdb.h
  13.  
  14. clean:
  15.     -rm -rf *.[ou] a.out core lex.yy.[co] y.tab.[cho] _force
  16.  
  17. clobber: clean
  18.     -rm -rf $(TARGET)
  19.